home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 126-150 / disk_128 / mrbackup / about.c < prev    next >
Text File  |  1992-05-06  |  763b  |  25 lines

  1. /* About.c: Tell the user a little about MRBackup. */
  2.  
  3. static char *abouts[] = {
  4. "This is MRBackup, a hard disk backup utility written by Mark Rinfret.\n",
  5. "This program allows you to perform complete or incremental backups.\n",
  6. "Data compression / decompression are provided to economize on floppies.\n",
  7. "If you find this program useful or if you have any suggestions,\n",
  8. "Send the author mail at the following addresses:\n",
  9. "    Mark R. Rinfret\n",
  10. "    348 Indian Avenue\n",
  11. "    Portsmouth, Rhode Island 02871\n\n",
  12. "    or, UseNet: mark@unisec.USI.COM\n",
  13. (char *) 0L};
  14.  
  15. About()
  16. {
  17.     int i;
  18.  
  19.     for (i = 0; i < 5; ++i) WriteConsole("\n");
  20.     for (i = 0;abouts[i];++i) {
  21.         TypeAndSpeak(abouts[i]);
  22.         if (!do_speech) Delay(30L); /* little over 1/2 second */
  23.     }
  24. }
  25.